There's no need to promote the use of the `pwd` command when shells
export the current directory as `$PWD`. Using `$PWD` makes the
commandline work in fish as well. Additionally, quote the variable so it
works properly even if the cwd has a space in it.
cd cargo
git submodule update --init
./.travis.install.deps.sh
-./configure --local-rust-root=`pwd`/rustc
+./configure --local-rust-root="$PWD"/rustc
make
make install
```